home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM 2.0.1 Licensing Disk / Sources / ASLMFileSpecs.r < prev    next >
Encoding:
Text File  |  1996-11-19  |  3.6 KB  |  151 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ASLMFileSpecs.r
  3.  
  4.     Contains:    All source and target files specifications used by
  5.                 the ASLM Installer
  6.  
  7.     Copyright:    © 1994-1995 by Apple Computer, Inc., all rights reserved.
  8.  
  9. */
  10.  
  11. /**********************************************************************
  12. ** "Shared Library Manager" file specs
  13. ***********************************************************************/
  14.  
  15. #if GENERATING68K
  16.     resource 'infs' (fsSrcSharedLibraryManager)
  17.     {
  18.         'INIT',    'OMGR',
  19.         0x00,        /* this allows us to put newer versions on the disk */
  20.         noSearchForFile,
  21.         TypeCrMustMatch,
  22.         SLMFolder"Shared Library Manager"
  23.     };
  24.  
  25.     resource 'intf' (fsTgtSharedLibraryManager)
  26.     {
  27.         format0
  28.         {
  29.             noSearchForFile,
  30.             TypeCrMustMatch,
  31.             'INIT',    'OMGR',
  32.             0,
  33.             "special-extn:Shared Library Manager"
  34.         };
  35.     };
  36. #endif
  37.  
  38. /**********************************************************************
  39. ** "Shared Library Manager PPC" file specs
  40. ***********************************************************************/
  41.  
  42. #if GENERATINGPOWERPC
  43.     resource 'infs' (fsSrcSharedLibraryManagerPPC)
  44.     {
  45.         'INIT',    'OMgr',
  46.         0x00,                    /* this allows us to put newer versions on the disk */
  47.         noSearchForFile,
  48.         TypeCrMustMatch,
  49.         SLMFolder"Shared Library Manager PPC"
  50.     };
  51.  
  52.     resource 'intf' (fsTgtSharedLibraryManagerPPC)
  53.     {
  54.         format0
  55.         {
  56.             noSearchForFile,
  57.             TypeCrMustMatch,
  58.             'INIT',    'OMgr',
  59.             0,
  60.             "special-extn:Shared Library Manager PPC"
  61.         };
  62.     };
  63. #endif
  64.  
  65. /**********************************************************************
  66. ** "System" file
  67. ***********************************************************************/
  68.  
  69. resource 'intf' (fsSystemFile) 
  70. {
  71.     format1
  72.     {
  73.         noSearchForFile,
  74.         TypeCrNeedNotMatch,
  75.         'zsys',    'MACS',            /* file type and creator */
  76.         8192,                    /* set finder bundle bit */
  77.         0,                        /* creation date */
  78.         0,                        /* modification data */
  79.         0,                        /* search proc resource ID */
  80.         "special-macs:System"
  81.     };
  82. };
  83.  
  84. /**********************************************************************
  85. ** "EtherTalk Phase 2" files and other EtherTalk files.
  86. ***********************************************************************/
  87.  
  88. resource 'infs' (fsSrcEtherTalkPhase2) 
  89. {
  90.     'adev',                        /* File Type        */ 
  91.     'et20',                        /* File Creator        */
  92.     0x00,                        /* Creation Date    */ 
  93.     noSearchForFile,
  94.     TypeCrNeedNotMatch,
  95.     SLMFolder"EtherTalk Phase 2"        /* path name        */
  96. };
  97.  
  98. resource 'infs' (fsTrgEtherTalkPhase2) 
  99. {
  100.     'adev',                        /* File Type        */ 
  101.     'et20',                        /* File Creator        */
  102.     0x00,                        /* Creation Date    */ 
  103.     noSearchForFile,
  104.     TypeCrNeedNotMatch,
  105.     "special-extn:EtherTalk Phase 2"        /* path name        */
  106. };
  107.  
  108. resource 'infs' (fsTrgEtherTalk) 
  109. {
  110.     'adev',                        /* File Type        */ 
  111.     'etlk',                        /* File Creator        */
  112.     0x00,                        /* Creation Date    */ 
  113.     noSearchForFile,
  114.     TypeCrMustMatch,
  115.     "special-macs:EtherTalk"        /* path name        */
  116. };
  117.  
  118. resource 'infs' (fsTrgEtherTalk2_0) 
  119. {
  120.     'adev',                        /* File Type        */ 
  121.     'et20',                        /* File Creator        */
  122.     0x00,                        /* Creation Date    */ 
  123.     noSearchForFile,
  124.     TypeCrMustMatch,
  125.     "special-macs:EtherTalk2.0"        /* path name        */
  126. };
  127.  
  128. resource 'infs' (fsTrgEtherTalk2_1) 
  129. {
  130.     'adev',                        /* File Type        */ 
  131.     'et20',                        /* File Creator        */
  132.     0x00,                        /* Creation Date    */ 
  133.     noSearchForFile,
  134.     TypeCrMustMatch,
  135.     "special-macs:EtherTalk2.1"        /* path name        */
  136. };
  137.  
  138. /**********************************************************************
  139. ** "ASLM Resources" file
  140. ***********************************************************************/
  141.  
  142. resource 'infs' (fsASLMResources) 
  143. {
  144.     'rsrc',                        /* File Type        */ 
  145.     'RSED',                        /* File Creator        */
  146.     0x00,                        /* this allows us to put newer versions on the disk */ 
  147.     noSearchForFile,
  148.     TypeCRMustMatch,
  149.     SLMFolder"ASLM Resources"    /* path name        */
  150. };
  151.